home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / FireMan.swf / scripts / frame_3713 / PlaceObject2_1434_5 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2008-09-12  |  462b  |  25 lines

  1. onClipEvent(enterFrame){
  2.    _visible = _X >= 0 && _X <= 256;
  3.    if(mover)
  4.    {
  5.       _X = _X + dx;
  6.       _Y = _Y + dy;
  7.       _X = _X - _root.windx;
  8.       xi -= _root.windx;
  9.       if(_X <= 0)
  10.       {
  11.          _X = _X + 256;
  12.          xi += 256;
  13.       }
  14.       if(Math.abs(_X - xi) >= xwide)
  15.       {
  16.          dx *= -1;
  17.       }
  18.       if(_Y >= 240)
  19.       {
  20.          _X = xi = (_root.aleatorio(0,15) + 1) * 16;
  21.          _Y = -16;
  22.       }
  23.    }
  24. }
  25.